home *** CD-ROM | disk | FTP | other *** search
- 100 print"[147]ml saver - robert bixby"
- 110 print"this saves ml to disk"
- 120 input"start address";a
- 130 input" end address";b
- 140 a1=int(a/256):a2=a-256*a1
- 150 input" filename";e$
- 160 open15,8,15,"s0:"+e$
- 170 open1,8,1,"0:"+e$+",p,w"
- 180 print#1,chr$(a2)chr$(a1);
- 190 forj=atob:print#1,chr$(peek(j));
- 200 next
- 210 close1:verify e$,8,1
- 220 input#15,a$,b$:printa$,b$:close15
- 230 end
-